home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / ID005.dxr / 00028.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  324 b   |  13 lines

  1. on exitFrame
  2.   set LastTick to the ticks
  3.   set OriginalTick to the ticks
  4.   repeat while (the ticks - OriginalTick) < 12
  5.     set y to 19 * (the ticks - LastTick)
  6.     set LastTick to the ticks
  7.     set the locV of sprite 7 to the locV of sprite 7 + y
  8.     updateStage()
  9.   end repeat
  10.   puppetSprite(7, 0)
  11.   go(the frame + 1)
  12. end
  13.